Listing 10 - Page 0: No Title

##############################################################################
# Python From Scratch
# Autor: Nilo Ney Coutinho Menezes
# Editora Novatec (c) 2010-2024
# Site: https://pythonfromscratch.com
#
# File: listing\chapter 10\10.1438 - No Title.py
# Description: No Title
##############################################################################

from clients import Client
from banks import Bank
from accounts import Account

joao = Client("Joao da Silva", "3241-5599")
maria = Client("Maria Silva", "7231-9955")
jose = Client("Jose Vargas", "9721-3000")
accountJM = Account([joao, maria], 100)
accountJ = Account([jose], 10)
tatu = Bank("Tatú")
tatu.open_account(accountJM)
tatu.open_account(accountJ)
accountJM.deposit(100)
accountJ.deposit(500)
accountJM.withdraw(40.54)
tatu.account_list()
Click here to download the file